home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE15 / CPPCLASS / cpp16 / DELEVENT.H < prev   
Encoding:
C/C++ Source or Header  |  1996-07-17  |  253 b   |  13 lines

  1. #ifndef DelphiEvents_H
  2. #define DelphiEvents_H
  3.  
  4. typedef void _pascal (*TNotifyEvent)( const void *Sender,
  5.                                                   const void *thisPtr );
  6.  
  7. //a Delphi Method pointer contains the Self
  8. struct TEvent
  9.  {
  10.   void *Code;
  11.   void *Self;
  12. };
  13. #endif